Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@tiptap/extension-ordered-list
Advanced tools
@tiptap/extension-ordered-list is an extension for the Tiptap editor that allows users to create and manage ordered lists within their rich text content. It provides a set of functionalities to easily integrate ordered lists into the Tiptap editor, making it simple to add, edit, and manipulate ordered lists in a structured and user-friendly manner.
Add Ordered List
This feature allows you to add an ordered list to the Tiptap editor. By importing the OrderedList extension and including it in the editor's extensions, you can use the `toggleOrderedList` command to add an ordered list to the editor content.
import OrderedList from '@tiptap/extension-ordered-list';
const editor = new Editor({
extensions: [
OrderedList,
],
});
editor.chain().focus().toggleOrderedList().run();
Toggle Ordered List
This feature allows you to toggle an ordered list on and off within the editor. The `toggleOrderedList` command can be used to switch between an ordered list and regular text.
editor.chain().focus().toggleOrderedList().run();
Set Ordered List Attributes
This feature allows you to set attributes for the ordered list, such as the starting number. The `setOrderedList` command can be used to customize the ordered list's attributes.
editor.chain().focus().setOrderedList({ start: 3 }).run();
prosemirror-schema-list is a ProseMirror schema extension that provides list node types and commands for working with ordered and unordered lists. It offers similar functionalities to @tiptap/extension-ordered-list but is designed for use with the ProseMirror editor directly, rather than the Tiptap framework.
Quill is a modern WYSIWYG editor that includes built-in support for ordered lists. It offers similar functionalities to @tiptap/extension-ordered-list but is a standalone editor with its own set of features and extensions.
Tiptap is a headless wrapper around ProseMirror – a toolkit for building rich text WYSIWYG editors, which is already in use at many well-known companies such as New York Times, The Guardian or Atlassian.
Documentation can be found on the Tiptap website.
Tiptap is open sourced software licensed under the MIT license.
FAQs
ordered list extension for tiptap
The npm package @tiptap/extension-ordered-list receives a total of 886,454 weekly downloads. As such, @tiptap/extension-ordered-list popularity was classified as popular.
We found that @tiptap/extension-ordered-list demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.